home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
050
/
turbot1.arc
/
PROG1.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1985-08-15
|
512b
|
18 lines
PROGRAM PROG1;
{$U+ Copyright (C), 1985 by Lyle Faurot. All rights reserved.
New Topics: Load, Compile, and Run a sample program.
}
BEGIN
WriteLn(' Welcome to the Turbo-Lesson Tutorials!');
WriteLn;
WriteLn('If this message is printing on your screen, you have');
WriteLn(' 1. Successfully loaded TURBO');
WriteLn(' 2. Loaded, Compiled, and Run a sample program');
WriteLn;
WriteLn('********* NOW, ON TO BIGGER CHALLENGES! ***********');
END.